home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Faces of Papua New Guinea
/
Faces of Papua New Guinea by Wm. C. Clarke, Ph.D. (Wayzata Technology)(3211)(1995).bin
/
mmdmovie
/
playall3
/
00067_Script_67
< prev
Wrap
Text File
|
1995-01-31
|
425b
|
30 lines
on keyDown
if the key = "m" then
toggleMenu
end if
end
on toggleMenu
global gMenuState
if gMenuState = 1 then
put 0 into gMenuState
installMenu 0
else
put 1 into gMenuState
installMenu 66
end if
end
on startMovie
global gMenuState
if gMenuState = 1 then
installMenu 66
else
installMenu 0
end if
end
on exitMovie
sound stop 2
end exitMovie